home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Aminet / game / role / drangband.lha / DrAngband298 / borgread.txt next >
Text File  |  2001-04-29  |  4KB  |  88 lines

  1.  
  2. Greetings my friends and welcome to the world of mindless dribble.
  3. This source code will enable you to spend countless hours staring
  4. at your computer when you should be doing something more productive,
  5. anything more productive.
  6.  
  7. To install this borg, you will need to do the following:
  8. 1.  Modify the config.h to uncomment:
  9.         a. the allow_borg line
  10.         b. the score_borg line
  11.         c. the allow_borg_graphics line
  12. 2.  Modify the makefile to include the borg1.o (or borg1.obj if windows)
  13.     though borg9.o
  14. 3.  Modify your angband.ini file if you want to run continuous play borgs.
  15.     You can cut and paste from below.
  16. 4.  Compile
  17.  
  18. The borg may get stuck in certain situations.  He may have a Clock Overflow.
  19. He may loop buying and selling the same stuff over and over.  Believe me
  20. when I say that these have been addressed.  His loops are greatly reduced.
  21.  
  22.  
  23. Continuous Play Mode: (option)
  24. Upon the death of a borg, he will automatically reroll a random character,
  25. with a random name and start fresh from clevel 1.  To enable the Continuous
  26. Play Mode, turn the game option cheat_live on.  To do that enter the
  27. options by pressing the equal sign (=) then Cheat Options (6).
  28.  
  29. If you want, you can tell the borg to select a certain race and or class for
  30. the next one rolled up.  There are two ways of doing this.  You can modify
  31. the angand.ini file (see the sample below) or you can modify the borg1.c
  32. file in the appropriate place.  It is near the top, you should be able to
  33. easily find it.
  34.  
  35. The Continual Play Mode is NOT turned on by default, you will need to
  36. select it.
  37.  
  38. This borg is updated just about everyday.  You can get the lastest source
  39. as well as executables at http://itctel.com/~apwhite/andrew.html
  40.  
  41. Have Fun,
  42. Dr. Andrew White
  43.  
  44. Here is a sample of what you may want to paste into your angband.ini file:
  45.  
  46. [Borg]
  47. # If the borg is in continual play mode (as with the screen saver),
  48. # he will respawn a randomly generated character at death.  This section
  49. # allows the user to make certain bias for the type of character generated.
  50. # You may select the race and or class and or minimal stats for the Borg.
  51. # You may also select the minimal character level needed before the
  52. # character dump is created in the game directory.
  53. #
  54. # With regards to race, the borg is programmed to accept the variety of
  55. # user defined races which may be in the p_info.txt file.  So the values
  56. # given in table below are for the default races.  But if you are bright
  57. # enough to modify the p_info.txt file then you are bright enough to figure
  58. # out that race 0 does not necessarily equal Human.  It's just the first
  59. # race listed in your p_info.txt file.
  60. #
  61. # RACE:-1 Random Race          CLASS:  -1 Random Class
  62. #       0 Human                         0 Warrior
  63. #       1 Half Elf                      1 Mage
  64. #       2 Elf                           2 Priest
  65. #       3 Hobbit                        3 Rogue
  66. #       4 Gnome                         4 Ranger
  67. #       5 Dwarf                         5 Paladin
  68. #       6 Half Orc
  69. #       7 Half Troll
  70. #       8 Dunadan
  71. #       9 High Elf
  72. #
  73. # With regards to the stats.  The number listed in this .ini file will be
  74. # the minimal stat amount used in the auto roller.  Don't make it too high
  75. # for each or the game will loop for a very long time waiting for the
  76. # right combination.  If your selections are out of reach for the RNG, then
  77. # after 32,000 tries the game will just assign you a random stat.
  78. race = -1
  79. class = -1
  80. STR = 12
  81. INT = 12
  82. WIS = 12
  83. DEX = 12
  84. CON = 12
  85. CHR = 12
  86. Level = 45
  87.  
  88.